Correct the definition of the values. (#123361, Marco Pesenti Gritti)
authorMatthias Clasen <maclas@gmx.de>
Wed, 12 Nov 2003 19:58:43 +0000 (19:58 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 12 Nov 2003 19:58:43 +0000 (19:58 +0000)
Wed Nov 12 20:57:50 2003  Matthias Clasen  <maclas@gmx.de>

* gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
the definition of the values.  (#123361, Marco Pesenti Gritti)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkicontheme.h

index 18580cabaa8191c5b0bc1a8a5fda30eaeece5e78..5cc958b85b312866c610e333098604f9a2dd104f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Nov 12 20:57:50 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
+       the definition of the values.  (#123361, Marco Pesenti Gritti)
+
 Wed Nov 12 20:54:02 2003  Matthias Clasen  <maclas@gmx.de>
 
        * gdk/gdkkeyuni.c: Map KP_Separator to ','.
index 18580cabaa8191c5b0bc1a8a5fda30eaeece5e78..5cc958b85b312866c610e333098604f9a2dd104f 100644 (file)
@@ -1,3 +1,8 @@
+Wed Nov 12 20:57:50 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
+       the definition of the values.  (#123361, Marco Pesenti Gritti)
+
 Wed Nov 12 20:54:02 2003  Matthias Clasen  <maclas@gmx.de>
 
        * gdk/gdkkeyuni.c: Map KP_Separator to ','.
index 18580cabaa8191c5b0bc1a8a5fda30eaeece5e78..5cc958b85b312866c610e333098604f9a2dd104f 100644 (file)
@@ -1,3 +1,8 @@
+Wed Nov 12 20:57:50 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
+       the definition of the values.  (#123361, Marco Pesenti Gritti)
+
 Wed Nov 12 20:54:02 2003  Matthias Clasen  <maclas@gmx.de>
 
        * gdk/gdkkeyuni.c: Map KP_Separator to ','.
index 18580cabaa8191c5b0bc1a8a5fda30eaeece5e78..5cc958b85b312866c610e333098604f9a2dd104f 100644 (file)
@@ -1,3 +1,8 @@
+Wed Nov 12 20:57:50 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
+       the definition of the values.  (#123361, Marco Pesenti Gritti)
+
 Wed Nov 12 20:54:02 2003  Matthias Clasen  <maclas@gmx.de>
 
        * gdk/gdkkeyuni.c: Map KP_Separator to ','.
index 18580cabaa8191c5b0bc1a8a5fda30eaeece5e78..5cc958b85b312866c610e333098604f9a2dd104f 100644 (file)
@@ -1,3 +1,8 @@
+Wed Nov 12 20:57:50 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
+       the definition of the values.  (#123361, Marco Pesenti Gritti)
+
 Wed Nov 12 20:54:02 2003  Matthias Clasen  <maclas@gmx.de>
 
        * gdk/gdkkeyuni.c: Map KP_Separator to ','.
index 3c789e1a1587d6c58f5a98178127d013d3237f44..6e418c0c0cbca52b848a4a26d37376e9952d32f0 100644 (file)
@@ -71,9 +71,9 @@ struct _GtkIconThemeClass
  **/
 typedef enum
 {
-  GTK_ICON_LOOKUP_NO_SVG = 0 << 0,
-  GTK_ICON_LOOKUP_FORCE_SVG = 0 << 1,
-  GTK_ICON_LOOKUP_USE_BUILTIN = 0 << 2
+  GTK_ICON_LOOKUP_NO_SVG = 1 << 0,
+  GTK_ICON_LOOKUP_FORCE_SVG = 1 << 1,
+  GTK_ICON_LOOKUP_USE_BUILTIN = 1 << 2
 } GtkIconLookupFlags;
 
 #define GTK_ICON_THEME_ERROR gtk_icon_theme_error_quark ()